@media screen and (min-width: 1080px) {

    /***** TextColorAndUnderline *****/
    .hoverTextColorAndUnderline {
        position: relative;
        display: inline-block;
    }
    .hoverTextColorAndUnderline {
        background-image: linear-gradient( to right, var(--secondary), var(--secondary) 50%, #fff 50% );
        background-size: 200% 100%;
        background-position: -100%;
        -webkit-background-clip: text;
        padding: 5px 0;
    }
    .hoverTextColorAndUnderline {
        font-family: 'menu-font';
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        -webkit-text-fill-color: transparent;
    }
    .hoverTextColorAndUnderline {
        transition: all 0.3s ease-in-out;
    }
    .hoverTextColorAndUnderline:before {
        content: '';
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
    }
    .hoverTextColorAndUnderline:before {
        background: var(--secondary);
        transition: all 0.3s ease-in-out;
    }
    .hoverTextColorAndUnderline:hover {
        background-position: 0;
    }
    .hoverTextColorAndUnderline:hover::before {
        width:100%;
    }

    /***** Underline *****/
    .hoverUnderline:before {
        content: '';
        background: var(--secondary);
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 2px;
        transition: all 0.3s ease-in-out;
    }
    .hoverUnderline:hover {
        background-position: 0;
    }
    .hoverUnderline:hover::before {
        width: 100%;
    }

    /***** Spin *****/
    .hoverSpin:hover {
        animation: Spin 1s;
    }

    @keyframes Spin {
        from {
            rotate: 0;
        }
        to {
            rotate: 360deg;
        }
    }


}